PDF for UWP | ComponentOne
C1.Xaml.Pdf Namespace / C1PdfDocument Class / FillPolygon(Color,Point[],FillMode) Method
The color used to fill the polygon.
Array of point structures that represent the vertices of the polygon.
FillMode parameter that determines how to handle overlapping areas within the polygon.

In This Topic
    FillPolygon(Color,Point[],FillMode) Method
    In This Topic
    Fills a polygon defined by an array of point structures using the specified fill mode.
    Syntax
    'Declaration
     
    
    Public Sub FillPolygon( _
       ByVal color As Color, _
       ByVal points() As Point, _
       Optional ByVal fillMode As FillMode _
    ) 
    public void FillPolygon( 
       Color color,
       Point[] points,
       FillMode fillMode
    )

    Parameters

    color
    The color used to fill the polygon.
    points
    Array of point structures that represent the vertices of the polygon.
    fillMode
    FillMode parameter that determines how to handle overlapping areas within the polygon.
    Remarks
    All coordinates are expressed in points, measured from the upper-left corner of the page.
    See Also